Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Owner-draw Button

0.00/5 (No votes)
3 Feb 2003 1  
A button-derived class that makes push buttons look like toolbar buttons

How the button looks on mouse leave event

How the button looks on mouse enter event

Introduction

I have always hated the so called "focused rectangle" Windows draws on push buttons having the focus. So I decided to derive my own class that does not display such a rectangle. Later, I put an image support for the button and that's how it began.

Using the Code

In the download is the whole solution, so you have just to unzip it and start Controls.sln and see all the files of the project (I suppose you have Visual Studio.NET). Then you may create your own push buttons from the "But" class. I supplied three different constructors for it. The first one uses a bitmap object to display on the button:

public But(string str, Bitmap bitmap, int cx, int cy)
{
    ResizeRedraw = true;            
    txt = str;//text caption of the button
    bmp = bitmap;//bitmap image to display
    bmp.MakeTransparent();
            
    MeasureSizes(cx, cy);//cx and cy are the desired width and height for the button
}

The next is working with icon:

public But(string str, System.Drawing.Icon ico, int cx, int cy, int IconWidth, int IconHeight)
{
    ResizeRedraw = true;            
    txt = str;
    ico = new Icon(ico, IconWidth, IconHeight);
    bmp = ico.ToBitmap();
    bmp.MakeTransparent();

    MeasureSizes(cx, cy);
}

And the last one (I use mostly) is without specifying cx and cy (in MeasureSizes function, I supply the minimum size required for proper displaying of the button).

public But(string str, System.Drawing.Icon ico, int IconWidth, int IconHeight)
{
    ResizeRedraw = true;            
    txt = str;
    ico = new Icon(ico, IconWidth, IconHeight);
    bmp = ico.ToBitmap();
    bmp.MakeTransparent();

    MeasureSizes(Width, Height);

Well, that's it! I hope my owner-drawn button will be useful. :)

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below. A list of licenses authors might use can be found here.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here